auto merge of #412 : ScriptDevil/cargo/default-help, r=alexcrichton
authorbors <bors@rust-lang.org>
Wed, 20 Aug 2014 17:44:04 +0000 (17:44 +0000)
committerbors <bors@rust-lang.org>
Wed, 20 Aug 2014 17:44:04 +0000 (17:44 +0000)
Most modern command line utilities print usage/help when invoked without any arguments.

cargo (prior to this patch) defaults to saying "no such subcommand" when invoked without arguments.
> $ cargo
> No such subcommand

With this patch, it will instead print the help message
> $ cargo
> Rust's package manager
>
> Usage:
> ...


Trivial merge